From 0b5282a5c75381ea93109e0fd167951c23aa9057 Mon Sep 17 00:00:00 2001 From: "mjw@wray-m-3.hpl.hp.com" Date: Tue, 13 Jul 2004 15:11:35 +0000 Subject: [PATCH] bitkeeper revision 1.1078 (40f3fba76Iz0xWiPyLNc6VMjsLY3Dw) Fix the arg spec for save. --- tools/python/xen/lowlevel/xc/xc.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/python/xen/lowlevel/xc/xc.c b/tools/python/xen/lowlevel/xc/xc.c index eb47e55dfd..3ee75db7da 100644 --- a/tools/python/xen/lowlevel/xc/xc.c +++ b/tools/python/xen/lowlevel/xc/xc.c @@ -310,8 +310,7 @@ static PyObject *pyxc_linux_restore(PyObject *self, static char *kwd_list[] = { "state_file", "progress", "debug", NULL }; - if ( !PyArg_ParseTupleAndKeywords(args, kwds, "is|ii", kwd_list, - &ioctxt.domain, + if ( !PyArg_ParseTupleAndKeywords(args, kwds, "s|ii", kwd_list, &state_file, &progress, &debug) ) -- 2.30.2